home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / htdocs / excel / excel.php
PHP Script  |  2003-04-06  |  411b  |  17 lines

  1. <?php
  2.   include_once "Spreadsheet/Excel/Writer.php";
  3.  
  4.   $xls =& new Spreadsheet_Excel_Writer();
  5.   $xls->send("test.xls");
  6.   $sheet =& $xls->addWorksheet('Test XLS');
  7.   $sheet->write(0,0,1);
  8.   $sheet->write(0,1,"Test in XAMPP");
  9.   $format =& $xls->addFormat();
  10.   $format->setBold();
  11.   $format->setColor("blue");
  12.   $sheet->write(1,0,2);
  13.   $sheet->write(1,1,$value,$format);
  14.   $xls->close();
  15. ?>  
  16.  
  17.